3a34e1ce815154e4d602acff6a87130032464b34,test/src/org/apache/jmeter/control/TestWhileController.java,TestWhileController,runtestPrevOK,#String#,70
Before Change
assertNull(nextName(controller));
while_cont.testModeResult = true;
if (type.equals(OTHER))
while_cont.setCondition(OTHER);
assertEquals("one", nextName(controller));
}
After Change
assertNull(nextName(controller));
setLastSampleStatus(true);
if (type.equals(OTHER)) {
while_cont.setCondition(OTHER);
}
assertEquals("one", nextName(controller));
}